home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Fritz: All Fritz
/
All Fritz.zip
/
All Fritz
/
FILES
/
PROGNG_C
/
ADVC10.LZH
/
MISC.C
< prev
next >
Wrap
Text File
|
1987-02-06
|
140b
|
10 lines
void delay(seconds)
unsigned int seconds;
{
long dtime;
dtime = time(NULL) + seconds;
while (dtime != time(NULL));
}